home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / pidentd / pidentd-2.6.1 / testdir / Makefile next >
Makefile  |  1995-07-30  |  266b  |  19 lines

  1. all:    test1
  2.     @echo "Running tests.."
  3.     @echo ""
  4.     @echo ""
  5.     @echo "Test #1..."
  6.     @echo ""
  7.     @echo "You should see your Unix username below:"
  8.     ./test1
  9.     @echo ""
  10.     @echo ""
  11.     @echo "End of tests."
  12.  
  13.  
  14. test1: test1.c
  15.     $(CC) -o test1 test1.c
  16.  
  17. clean:
  18.     rm -f test1 *~ core *.o \#*
  19.